From: Tim Starling Date: Fri, 14 Jul 2006 17:05:00 +0000 (+0000) Subject: missed one X-Git-Tag: 1.31.0-rc.0~56252 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=588b6a80cd088fc83823d42b34f00974609ad4f7;p=lhc%2Fweb%2Fwiklou.git missed one --- diff --git a/includes/SpecialIpblocklist.php b/includes/SpecialIpblocklist.php index 4ad265c2c8..6df7f038b7 100644 --- a/includes/SpecialIpblocklist.php +++ b/includes/SpecialIpblocklist.php @@ -171,7 +171,7 @@ class IPUnblockForm { // No extra conditions } elseif ( substr( $this->ip, 0, 1 ) == '#' ) { $conds['ipb_id'] = substr( $this->ip, 1 ); - } elseif ( IP::ToUnsigned( $this->ip ) !== false ) { + } elseif ( IP::toUnsigned( $this->ip ) !== false ) { $conds['ipb_address'] = $this->ip; $conds['ipb_auto'] = 0; } elseif( preg_match( "/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\\/(\\d{1,2})$/", $this->ip, $matches ) ) {